Includes

data class Includes(users: ArrayList<User>?, topics: ArrayList<Topic>?, tweets: ArrayList<Tweet>?, polls: ArrayList<Poll>?, media: ArrayList<Media>?)

Properties

Link copied to clipboard
@SerializedName(value = "media")
var media: ArrayList<Media>?
Link copied to clipboard
@SerializedName(value = "polls")
var polls: ArrayList<Poll>?
Link copied to clipboard
@SerializedName(value = "topics")
var topics: ArrayList<Topic>?
Link copied to clipboard
@SerializedName(value = "tweets")
var tweets: ArrayList<Tweet>?
Link copied to clipboard
@SerializedName(value = "users")
var users: ArrayList<User>?

This includes a list of referenced users in the form of user objects with their default fields and any additional fields requested using the user.fields parameter.